Login     Sign up
<noscript> bug
Craig Hopson (@craighopson)
Join date: Mar 24th 2011
Community posts: 26
View Profile
Send Message

hi people i have users putting the <noscript> tag as there username which is messing things up a bit any ideas how to stop this

158 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

that is normally not possible. You only can use 0-9 and a-z for the username.

158 months ago
Craig Hopson (@craighopson)
Join date: Mar 24th 2011
Community posts: 26
View Profile
Send Message

sorry full name check out my profile now

158 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

in account.module.php, function post

[code]
if ($_POST['birthyear'] < 1900 || $_POST['birthyear'] > date("Y",time())) {
sys_back('Wrong birth year');
}
[b] if (ereg('<',$_POST['fullname'])) {
sys_back('Unavailable Full name format');
}[/b]
[/code]

158 months ago
tundex32 (@tundex32)
Join date: May 17th 2011
Community posts: 2
View Profile
Send Message

how can we have an deactivated on jcow

157 months ago
tundex32 (@tundex32)
Join date: May 17th 2011
Community posts: 2
View Profile
Send Message

how can users have their account deactivated on jcow

157 months ago